home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / text / hyper / hsc_source.lha / source / hscprj / pdefs.h < prev    next >
Text File  |  1996-09-12  |  2KB  |  59 lines

  1. /*
  2.  * hscprj/pdefs.h
  3.  *
  4.  * project-managment-defines for hsc
  5.  *
  6.  * Copyright (C) 1995,96  Thomas Aglassinger
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  *
  22.  */
  23.  
  24. /*
  25.  * project_file:
  26.  *
  27.  * line 1  : "HSC_PROJECT"                   to identify prokect file
  28.  * line 2  : "VERSION x"                     file format version
  29.  * comments: "# xxx"                         some comment lines
  30.  *
  31.  * fileinfo: "DOCUMENT"   len uri            document
  32.  *                                           start document-info block
  33.  *           "SOURCE"     len file           hsc-source used to create
  34.  *                                           this document
  35.  *           "TITLE"      len title          document title
  36.  *           "ID"         len idname         ID defined in this doc.
  37.  *           "INCLUDE     len file"          file included during
  38.  *                                           processing this document
  39.  */
  40.  
  41. /*
  42.  * IDs in project file
  43.  */
  44. #define FILEID_HSCPRJ    "HSC_PROJECT"
  45. #define VERSION_HSCPRJ   2
  46.  
  47. #define LINE_VERSION_STR  "VERSION"
  48. #define LINE_REM_STR      "#"
  49.  
  50. #define LINE_DOCUMENT_STR  "DOCUMENT"
  51. #define LINE_SOURCE_STR    "SOURCE"
  52. #define LINE_TITLE_STR     "TITLE"
  53. #define LINE_ID_STR        "ID"
  54. #define LINE_INCLUDE_STR   "INCLUDE"
  55. #define LINE_REFERENCE_STR "REFERENCE"
  56.  
  57. #define ID_CALLER_STR "FROM"
  58.  
  59.